Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

New Publisher: New features and preparations for new standalone publisher #2556

Conversation

iLLiCiTiT
Copy link
Member

@iLLiCiTiT iLLiCiTiT commented Jan 18, 2022

Brief description

Added few required features in new publisher and prepare it to be usable in standalone publisher.

Changes

  • extended creator dialog
    • has context selection (creator can tell if it make sense)
    • has widget where creator can define "pre-create" attributes for which can be used same objects as for instance attributes
      • this can be used for any Creator's specific inputs that may be needed before the creation
      • best example is Use selection which is not anymore in default create dialog
  • create context and Publisher can work even asset and task is not defined (in global context AVALON_ASSET and AVALON_TASK)
    • this is needed for new standalone publisher
  • added new attribute definitions
    • boolean - simple True/False
    • file input - can define filters of file types if accepts folder path or specific extensions and if output is single file or multiple files
      • this is 50% finished (missing filtering of single file input and some UI details)
    • UI specific attributes - Label and Separator
  • Assets widget and Tasks widget were modigied to be possible easily change how their models are created and handled
    • Assets widget has button to set current context which is visible only if there is current context (when at least AVALON_ASSET is set)
  • renamed method get_attribute_defs to get_instance_attr_defs on creator class
  • moved few widgets from publisher to utils as are already used at multiple places
  • modified NiceCheckbox background color
  • reset of publisher can be skipped
    • new standalone publisher will need to select project before publisher is reset
  • fixed smaller resize issues
  • publish attributes are not duplicated anymore

How create dialog looks now.

  • Left side contain context widgets (asset/task)
  • Middle contain creators list and variant input field
  • Right creator's pre-create attributes (can be empty)

Example screenshot 1

image

Examples

  1. Context widget is disabled because the selected creator defined that before creation selection of context does not make sense
  2. Boolean attribute example
  3. Separator attribute example
  4. Label attribute example
  5. Single file attribute example
  6. Multi file attribute example
  7. Change of checkbox background color

Example screenshot 2

Second creator have enabled context change but does not have any pre-create attributes.
image

How to test

At this moment the easiest is to run testhost (script ~/openpype/hosts/testhost/run_publish.py requires few changes).
You can play with the 2 creator which are there now to test different cases.

@mkolar
Copy link
Member

mkolar commented Jan 18, 2022

if item_row is None:
item_row = _value_set
elif item_row != _value_set:
all_same = False
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

local variable 'all_same' is assigned to but never used

@iLLiCiTiT iLLiCiTiT self-assigned this Jan 18, 2022
@iLLiCiTiT iLLiCiTiT added the type: enhancement Enhancements to existing functionality label Jan 18, 2022
Copy link
Member

@mkolar mkolar left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm thinking that we should put some explainer text on the right side for creators that don't define any attributes to edit. The empty space makes it feel like something is missing :).

Maybe just

This creator had no configurable options.

In the middle of the space

@iLLiCiTiT
Copy link
Member Author

I'm thinking that we should put some explainer text on the right side for creators that don't define any attributes to edit. The empty space makes it feel like something is missing :).

Added

image

@iLLiCiTiT iLLiCiTiT requested a review from mkolar January 25, 2022 12:57
@mkolar
Copy link
Member

mkolar commented Jan 25, 2022

You copied my grammar mistake :D. It should be This creator has no configurable options.

@iLLiCiTiT
Copy link
Member Author

You copied my grammar mistake

It's not a mistake. It's an easter egg :) Fixed

@mkolar mkolar merged commit ecae9f6 into develop Feb 7, 2022
@mkolar mkolar deleted the feature/OP-2429_Publisher-Preparations-before-standalone-publisher branch February 7, 2022 08:52
BenoitConnan added a commit to Ellipsanime/OpenPype that referenced this pull request Mar 4, 2022
commit 075b805
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Feb 28 15:09:16 2022 +0100

    add python 2 compatibility to path_tools

commit 1b184a0
Author: clement.hector <clement.hector@gmail.com>
Date:   Fri Feb 18 10:31:09 2022 +0100

    add root keys and project keys

commit 6f79251
Merge: ecae9f6 6468751
Author: Petr Kalis <petr.kalis@gmail.com>
Date:   Mon Feb 7 10:05:55 2022 +0100

    Merge pull request ynput#2634 from Ellipsanime/fix-photoshop-environement-workfiles-on-launch

    Fix open workfile on launch in photoshop

commit ecae9f6
Merge: 4b3834e 3160199
Author: Milan Kolar <mkolar@users.noreply.github.com>
Date:   Mon Feb 7 09:52:39 2022 +0100

    Merge pull request ynput#2556 from pypeclub/feature/OP-2429_Publisher-Preparations-before-standalone-publisher

commit 4b3834e
Merge: ccea535 604a590
Author: pypebot <82967070+pypebot@users.noreply.github.com>
Date:   Mon Feb 7 09:38:20 2022 +0100

    [Automated] Merged release main into develop

commit ccea535
Merge: f2a9543 a11700e
Author: pypebot <82967070+pypebot@users.noreply.github.com>
Date:   Sat Feb 5 04:34:51 2022 +0100

    [Automated] Merged main into develop

commit 6468751
Author: clement.hector <clement.hector@gmail.com>
Date:   Fri Feb 4 12:11:05 2022 +0100

    use env_value_to_bool instead of ast.literal_eval + os.getenv

commit fe46093
Author: clement.hector <clement.hector@gmail.com>
Date:   Wed Feb 2 19:36:49 2022 +0100

    fix test on string to boolean

commit 3160199
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 14:15:19 2022 +0100

    fix grammar

commit d739364
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 13:48:18 2022 +0100

    handle default value of 'is_label_horizontal'

commit 7ec4d50
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 13:48:03 2022 +0100

    precreate widget is separated from create dialog completely

commit f8be576
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 18:05:32 2022 +0100

    renamed method 'get_attribute_defs' to 'get_instance_attr_defs'

commit 20f5e8f
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:51:25 2022 +0100

    hound fixes

commit 95176b6
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:26:16 2022 +0100

    modified example creator

commit 23c3bc8
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:26:09 2022 +0100

    style changes of header view nad checkbox

commit 2d75212
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:25:51 2022 +0100

    ui attribute definitions are skipped for storing data

commit f0b7f72
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:25:34 2022 +0100

    creator dialog has context widget and creator's attributes

commit 9c6a57a
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:23:37 2022 +0100

    creator can define precreate attribute definitions and allowing context change

commit 3878c52
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:57 2022 +0100

    added widgett for pre create attributes

commit fffdef5
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:41 2022 +0100

    added publisher specific asset and task widgets

commit fbdd1d8
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:08 2022 +0100

    moved few widgets to tools/utils and modified asset/task widgets to easily change source model

commit 396bdfd
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:16:32 2022 +0100

    added few new attribute definitions and their widgets
BenoitConnan added a commit to Ellipsanime/OpenPype that referenced this pull request Mar 4, 2022
commit 4f8ab6d
Author: BenoitConnan <82808268+BenoitConnan@users.noreply.github.com>
Date:   Tue Feb 8 10:59:57 2022 +0100

    Use qt

    Suggestion from code review

    Co-authored-by: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com>

commit 509792e
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Wed Feb 2 18:29:24 2022 +0100

    hound fix

commit 022fce8
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Wed Feb 2 18:21:35 2022 +0100

    clean photoshop settings examples

commit 07ab742
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Wed Feb 2 18:10:41 2022 +0100

    Add studio tools launch logic for photoshop

commit aee4f0d
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Fri Jan 21 17:46:50 2022 +0100

    add photoshop settings for scriptemenu

commit ce79d66
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Fri Jan 21 17:46:19 2022 +0100

    Add studio tool as host tool

commit 6f79251
Merge: ecae9f6 6468751
Author: Petr Kalis <petr.kalis@gmail.com>
Date:   Mon Feb 7 10:05:55 2022 +0100

    Merge pull request ynput#2634 from Ellipsanime/fix-photoshop-environement-workfiles-on-launch

    Fix open workfile on launch in photoshop

commit ecae9f6
Merge: 4b3834e 3160199
Author: Milan Kolar <mkolar@users.noreply.github.com>
Date:   Mon Feb 7 09:52:39 2022 +0100

    Merge pull request ynput#2556 from pypeclub/feature/OP-2429_Publisher-Preparations-before-standalone-publisher

commit 4b3834e
Merge: ccea535 604a590
Author: pypebot <82967070+pypebot@users.noreply.github.com>
Date:   Mon Feb 7 09:38:20 2022 +0100

    [Automated] Merged release main into develop

commit ccea535
Merge: f2a9543 a11700e
Author: pypebot <82967070+pypebot@users.noreply.github.com>
Date:   Sat Feb 5 04:34:51 2022 +0100

    [Automated] Merged main into develop

commit 6468751
Author: clement.hector <clement.hector@gmail.com>
Date:   Fri Feb 4 12:11:05 2022 +0100

    use env_value_to_bool instead of ast.literal_eval + os.getenv

commit fe46093
Author: clement.hector <clement.hector@gmail.com>
Date:   Wed Feb 2 19:36:49 2022 +0100

    fix test on string to boolean

commit 3160199
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 14:15:19 2022 +0100

    fix grammar

commit d739364
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 13:48:18 2022 +0100

    handle default value of 'is_label_horizontal'

commit 7ec4d50
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 13:48:03 2022 +0100

    precreate widget is separated from create dialog completely

commit f8be576
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 18:05:32 2022 +0100

    renamed method 'get_attribute_defs' to 'get_instance_attr_defs'

commit 20f5e8f
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:51:25 2022 +0100

    hound fixes

commit 95176b6
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:26:16 2022 +0100

    modified example creator

commit 23c3bc8
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:26:09 2022 +0100

    style changes of header view nad checkbox

commit 2d75212
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:25:51 2022 +0100

    ui attribute definitions are skipped for storing data

commit f0b7f72
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:25:34 2022 +0100

    creator dialog has context widget and creator's attributes

commit 9c6a57a
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:23:37 2022 +0100

    creator can define precreate attribute definitions and allowing context change

commit 3878c52
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:57 2022 +0100

    added widgett for pre create attributes

commit fffdef5
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:41 2022 +0100

    added publisher specific asset and task widgets

commit fbdd1d8
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:08 2022 +0100

    moved few widgets to tools/utils and modified asset/task widgets to easily change source model

commit 396bdfd
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:16:32 2022 +0100

    added few new attribute definitions and their widgets
BenoitConnan added a commit to Ellipsanime/OpenPype that referenced this pull request Mar 4, 2022
commit 6c6baf4
Author: clement.hector <clement.hector@gmail.com>
Date:   Wed Feb 16 15:20:48 2022 +0100

    Add log to collect shotgrid session

commit 2bfdec2
Author: clement.hector <clement.hector@gmail.com>
Date:   Thu Feb 10 22:14:15 2022 +0100

    Move to function to shotgun version

commit 0155b86
Author: clement.hector <clement.hector@gmail.com>
Date:   Thu Feb 10 20:37:22 2022 +0100

    fix version thumbnail

commit 211ba00
Author: clement.hector <clement.hector@gmail.com>
Date:   Thu Feb 10 20:37:54 2022 +0100

    remove import webview

commit 6913a2d
Author: clement.hector <clement.hector@gmail.com>
Date:   Thu Feb 10 19:58:35 2022 +0100

    Update shotgrid integration to have path to movie and path to frame

commit 93b6094
Author: clement.hector <clement.hector@gmail.com>
Date:   Mon Feb 7 14:13:45 2022 +0100

    delete melusine

commit fe12f64
Author: clement.hector <clement.hector@gmail.com>
Date:   Thu Feb 3 10:23:55 2022 +0100

    remove pywebview webruntime cefpython3

commit bd1a963
Author: clement.hector <clement.hector@gmail.com>
Date:   Mon Jan 24 11:32:47 2022 +0100

    add shotgrid user to context

commit cfc1f90
Author: clement.hector <clement.hector@gmail.com>
Date:   Mon Jan 24 11:29:55 2022 +0100

    Add validate user

commit dec089f
Author: clement.hector <clement.hector@gmail.com>
Date:   Fri Jan 21 11:11:00 2022 +0100

    remove import

commit 571e2c1
Author: clement.hector <clement.hector@gmail.com>
Date:   Fri Jan 21 11:10:29 2022 +0100

    hot fix

commit 62c649c
Author: clement.hector <clement.hector@gmail.com>
Date:   Wed Jan 19 15:49:29 2022 +0100

    add thumbnail to publishedfiles

commit 14a215e
Author: Vic Bartel <vbartel@yanport.com>
Date:   Thu Jan 13 17:41:22 2022 +0100

    Add new ui submodule

commit e326e22
Author: clement.hector <clement.hector@gmail.com>
Date:   Sat Jan 8 12:12:14 2022 +0100

    fix shotgun certificate error

commit f342365
Author: clement.hector <clement.hector@gmail.com>
Date:   Fri Jan 7 15:05:46 2022 +0100

    set shotgrid certificate

commit d11b089
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Wed Dec 15 14:14:35 2021 +0100

    Update shotgrid publish plugins

commit 7ab8c50
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Tue Dec 14 17:18:50 2021 +0100

    Fix deadline job env vars

commit 7c62741
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Mon Dec 13 11:50:49 2021 +0100

    Fix publishFile when nothing was extracted

commit b130cae
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Fri Dec 10 11:07:54 2021 +0100

    Add shotgun_api3

commit 8d264d5
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Fri Dec 10 11:01:30 2021 +0100

    Add shotgrid user to deadline jobs environment variable

commit f562ba1
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Fri Dec 10 11:00:51 2021 +0100

    Update shotgrid pyblish plugins

commit 5b00c6e
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Fri Dec 10 10:50:34 2021 +0100

    Add login to tray menu

commit 36ef85a
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Thu Dec 9 15:56:49 2021 +0100

    Modify credentials to sotre login within local json file

commit 63223d3
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Thu Dec 9 14:14:35 2021 +0100

    Modify shotgrid server settings

commit cbee6f9
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Wed Oct 27 11:44:35 2021 +0200

    Add debug log

commit 8b9851f
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Tue Oct 26 16:55:01 2021 +0200

    Add dependencies

commit cf25d73
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Tue Oct 26 15:40:32 2021 +0200

    WIP fix shotgrid login while waiting real auth mechanism

commit 53e48ab
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Tue Oct 26 15:39:14 2021 +0200

    shotgrid manager batch interface

commit a8a10bb
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Thu Oct 21 16:44:49 2021 +0200

    Add SendBatch on button pressed

commit 2e31e70
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Thu Oct 21 11:49:26 2021 +0200

    Add web interface python api

commit 183bb81
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Wed Oct 20 15:47:23 2021 +0200

    WIP first implementation of batch web interface

commit 8706642
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Fri Oct 15 14:00:17 2021 +0200

    Implement Add Shotgrid Review Tag

commit 9488240
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Mon Oct 11 14:16:01 2021 +0200

    Fix shotgrid publish plugins python 2 & 3 compatibility

commit 16a2eef
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Mon Oct 4 11:14:58 2021 +0200

    Fix shotgrid pyblish plugin

commit 392bf95
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Mon Oct 4 11:14:16 2021 +0200

    Add shotgrid quickstart doc

commit 62d43d6
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Tue Sep 28 17:41:43 2021 +0200

    Shotgrid pyblish plugin: reuse existing version

commit bd892a6
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Mon Sep 27 17:50:20 2021 +0200

    Fix shotgrid credential dialogs

commit 74e935f
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Mon Sep 27 17:48:49 2021 +0200

    Implement pyblish plugin to create shotgri version and publishedfiles

commit 1c5bc60
Author: jlorrain <jlorrain@lto.fr>
Date:   Thu Sep 23 14:07:35 2021 +0200

    Added shotgrid first publish plugin skeletons

commit 828fe41
Author: jlorrain <jlorrain@lto.fr>
Date:   Thu Sep 23 14:07:15 2021 +0200

    Fix credential dialog icon import

commit 1fa8d96
Author: jlorrain <jlorrain@lto.fr>
Date:   Thu Sep 16 11:06:55 2021 +0200

    Add openpype logger to shotgrid batch dialog

commit ceb3cd2
Author: jlorrain <jlorrain@lto.fr>
Date:   Thu Sep 16 10:30:39 2021 +0200

    Improve request handling

commit e477a7d
Author: Vic Bartel <vbartel@yanport.com>
Date:   Tue Sep 14 15:06:34 2021 +0200

    Get rid of strong shotgrid leecher project linkage

commit 22cff3e
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Fri Sep 10 17:45:07 2021 +0200

    Implement server module API call

commit cd86d6c
Author: Jerome Lorrain <J.Lorrain@ellipsanime.fr>
Date:   Fri Sep 10 16:27:05 2021 +0200

    Implement batch dialog box and arrange settings

commit 01e4f54
Author: jlorrain <jlorrain@lto.fr>
Date:   Fri Sep 10 00:00:52 2021 +0200

    impplement Shotgrid settings

commit e5e5698
Author: Vic Bartel <vbartel@yanport.com>
Date:   Thu Sep 9 18:07:24 2021 +0200

    Repair shotgrid module

commit 3d08f12
Author: Victor Bartel <victor.bartel@yandex.com>
Date:   Mon Aug 30 17:48:03 2021 +0200

    Fix import module

commit 5a999b9
Author: Vic Bartel <vbartel@yanport.com>
Date:   Fri Jul 9 16:30:41 2021 +0200

    Add shotgrid leecher submodule

commit 77ae661
Author: Victor Bartel <victor.bartel@yandex.com>
Date:   Fri Jul 9 12:07:37 2021 +0200

    Fix and improve unit tests and add a launcher

commit 389cee6
Author: Victor Bartel <victor.bartel@yandex.com>
Date:   Thu Jul 8 17:24:57 2021 +0200

    Activate mypy on pre-commit, migrate from AnyStr to str type

commit 7852437
Author: Victor Bartel <victor.bartel@yandex.com>
Date:   Thu Jul 8 14:33:10 2021 +0200

    Refactor credentials module

commit 8dab062
Author: clement.hector <c.hector@ellipsanime.fr>
Date:   Thu Jul 8 13:10:47 2021 +0200

    Store credential

commit b60e484
Author: Vic Bartel <vbartel@yanport.com>
Date:   Wed Jul 7 17:12:39 2021 +0200

    Add const and settings lib modules

commit 30d354d
Author: clement.hector <c.hector@ellipsanime.fr>
Date:   Wed Jul 7 15:35:45 2021 +0200

    Refecto credential from ftrack module to shotgrid module

commit 4977e10
Author: clement.hector <c.hector@ellipsanime.fr>
Date:   Wed Jul 7 12:02:22 2021 +0200

    add url from seting

commit e1b2c79
Author: clement.hector <c.hector@ellipsanime.fr>
Date:   Tue Jul 6 13:31:59 2021 +0200

    add debugging method for vscode

commit 6d52d47
Author: clement.hector <c.hector@ellipsanime.fr>
Date:   Tue Jul 6 11:44:52 2021 +0200

    Set basic user connection to shotgrid

commit 8606f7a
Author: clement.hector <c.hector@ellipsanime.fr>
Date:   Tue Jul 6 11:35:57 2021 +0200

    add shotgrid module setting in global setting

commit 584856a
Author: clement.hector <c.hector@ellipsanime.fr>
Date:   Tue Jul 6 11:34:52 2021 +0200

    setup black

commit 4bc8217
Author: clement.hector <c.hector@ellipsanime.fr>
Date:   Tue Jul 6 11:34:10 2021 +0200

    add shotgun api to poetry

commit 5bc1da3
Author: clement.hector <c.hector@ellipsanime.fr>
Date:   Fri Jul 2 16:27:28 2021 +0200

    rename shotgun to shotgrid

commit e46431b
Author: Vic Bartel <vbartel@yanport.com>
Date:   Fri Jun 25 16:12:18 2021 +0200

    Add module readme file

commit 58e00b2
Author: Vic Bartel <victor.bartel@yandex.com>
Date:   Fri Jun 18 11:40:24 2021 +0200

    Make shotgun login dialog visible and clickable

commit ac015e8
Author: Vic Bartel <victor.bartel@yandex.com>
Date:   Thu Jun 17 17:50:18 2021 +0200

    Add very first shotgun login dialog

commit a20b3c9
Author: Vic Bartel <victor.bartel@yandex.com>
Date:   Wed Jun 16 17:55:12 2021 +0200

    Re-enable pre-commit hooks

commit b7a06bf
Author: Vic Bartel <victor.bartel@yandex.com>
Date:   Wed Jun 16 17:53:39 2021 +0200

    Add brand new shotgun module

commit 6f79251
Merge: ecae9f6 6468751
Author: Petr Kalis <petr.kalis@gmail.com>
Date:   Mon Feb 7 10:05:55 2022 +0100

    Merge pull request ynput#2634 from Ellipsanime/fix-photoshop-environement-workfiles-on-launch

    Fix open workfile on launch in photoshop

commit ecae9f6
Merge: 4b3834e 3160199
Author: Milan Kolar <mkolar@users.noreply.github.com>
Date:   Mon Feb 7 09:52:39 2022 +0100

    Merge pull request ynput#2556 from pypeclub/feature/OP-2429_Publisher-Preparations-before-standalone-publisher

commit 4b3834e
Merge: ccea535 604a590
Author: pypebot <82967070+pypebot@users.noreply.github.com>
Date:   Mon Feb 7 09:38:20 2022 +0100

    [Automated] Merged release main into develop

commit ccea535
Merge: f2a9543 a11700e
Author: pypebot <82967070+pypebot@users.noreply.github.com>
Date:   Sat Feb 5 04:34:51 2022 +0100

    [Automated] Merged main into develop

commit 6468751
Author: clement.hector <clement.hector@gmail.com>
Date:   Fri Feb 4 12:11:05 2022 +0100

    use env_value_to_bool instead of ast.literal_eval + os.getenv

commit fe46093
Author: clement.hector <clement.hector@gmail.com>
Date:   Wed Feb 2 19:36:49 2022 +0100

    fix test on string to boolean

commit 3160199
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 14:15:19 2022 +0100

    fix grammar

commit d739364
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 13:48:18 2022 +0100

    handle default value of 'is_label_horizontal'

commit 7ec4d50
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 13:48:03 2022 +0100

    precreate widget is separated from create dialog completely

commit f8be576
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 18:05:32 2022 +0100

    renamed method 'get_attribute_defs' to 'get_instance_attr_defs'

commit 20f5e8f
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:51:25 2022 +0100

    hound fixes

commit 95176b6
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:26:16 2022 +0100

    modified example creator

commit 23c3bc8
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:26:09 2022 +0100

    style changes of header view nad checkbox

commit 2d75212
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:25:51 2022 +0100

    ui attribute definitions are skipped for storing data

commit f0b7f72
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:25:34 2022 +0100

    creator dialog has context widget and creator's attributes

commit 9c6a57a
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:23:37 2022 +0100

    creator can define precreate attribute definitions and allowing context change

commit 3878c52
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:57 2022 +0100

    added widgett for pre create attributes

commit fffdef5
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:41 2022 +0100

    added publisher specific asset and task widgets

commit fbdd1d8
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:08 2022 +0100

    moved few widgets to tools/utils and modified asset/task widgets to easily change source model

commit 396bdfd
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:16:32 2022 +0100

    added few new attribute definitions and their widgets
BenoitConnan added a commit to Ellipsanime/OpenPype that referenced this pull request Mar 4, 2022
commit bf31458
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Fri Oct 8 10:50:44 2021 +0200

    change button name and add tooltip

commit da42cbf
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Thu Oct 7 17:35:17 2021 +0200

    Fix syntax for linter

commit fc4f98b
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Thu Oct 7 16:54:52 2021 +0200

    Implement sanity mode to pyblish openpype GUI

commit 6f79251
Merge: ecae9f6 6468751
Author: Petr Kalis <petr.kalis@gmail.com>
Date:   Mon Feb 7 10:05:55 2022 +0100

    Merge pull request ynput#2634 from Ellipsanime/fix-photoshop-environement-workfiles-on-launch

    Fix open workfile on launch in photoshop

commit ecae9f6
Merge: 4b3834e 3160199
Author: Milan Kolar <mkolar@users.noreply.github.com>
Date:   Mon Feb 7 09:52:39 2022 +0100

    Merge pull request ynput#2556 from pypeclub/feature/OP-2429_Publisher-Preparations-before-standalone-publisher

commit 4b3834e
Merge: ccea535 604a590
Author: pypebot <82967070+pypebot@users.noreply.github.com>
Date:   Mon Feb 7 09:38:20 2022 +0100

    [Automated] Merged release main into develop

commit ccea535
Merge: f2a9543 a11700e
Author: pypebot <82967070+pypebot@users.noreply.github.com>
Date:   Sat Feb 5 04:34:51 2022 +0100

    [Automated] Merged main into develop

commit 6468751
Author: clement.hector <clement.hector@gmail.com>
Date:   Fri Feb 4 12:11:05 2022 +0100

    use env_value_to_bool instead of ast.literal_eval + os.getenv

commit fe46093
Author: clement.hector <clement.hector@gmail.com>
Date:   Wed Feb 2 19:36:49 2022 +0100

    fix test on string to boolean

commit 3160199
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 14:15:19 2022 +0100

    fix grammar

commit d739364
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 13:48:18 2022 +0100

    handle default value of 'is_label_horizontal'

commit 7ec4d50
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 13:48:03 2022 +0100

    precreate widget is separated from create dialog completely

commit f8be576
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 18:05:32 2022 +0100

    renamed method 'get_attribute_defs' to 'get_instance_attr_defs'

commit 20f5e8f
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:51:25 2022 +0100

    hound fixes

commit 95176b6
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:26:16 2022 +0100

    modified example creator

commit 23c3bc8
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:26:09 2022 +0100

    style changes of header view nad checkbox

commit 2d75212
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:25:51 2022 +0100

    ui attribute definitions are skipped for storing data

commit f0b7f72
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:25:34 2022 +0100

    creator dialog has context widget and creator's attributes

commit 9c6a57a
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:23:37 2022 +0100

    creator can define precreate attribute definitions and allowing context change

commit 3878c52
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:57 2022 +0100

    added widgett for pre create attributes

commit fffdef5
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:41 2022 +0100

    added publisher specific asset and task widgets

commit fbdd1d8
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:08 2022 +0100

    moved few widgets to tools/utils and modified asset/task widgets to easily change source model

commit 396bdfd
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:16:32 2022 +0100

    added few new attribute definitions and their widgets
BenoitConnan added a commit to Ellipsanime/OpenPype that referenced this pull request Mar 4, 2022
commit 9be0d40
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Thu Dec 23 14:49:17 2021 +0100

    Fix syntax

commit 3e23455
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Wed Dec 22 10:55:34 2021 +0100

    Move setting from Global to Maya

commit e452155
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Mon Dec 20 11:58:49 2021 +0100

    Add option to publish from published workfile

commit 6f79251
Merge: ecae9f6 6468751
Author: Petr Kalis <petr.kalis@gmail.com>
Date:   Mon Feb 7 10:05:55 2022 +0100

    Merge pull request ynput#2634 from Ellipsanime/fix-photoshop-environement-workfiles-on-launch

    Fix open workfile on launch in photoshop

commit ecae9f6
Merge: 4b3834e 3160199
Author: Milan Kolar <mkolar@users.noreply.github.com>
Date:   Mon Feb 7 09:52:39 2022 +0100

    Merge pull request ynput#2556 from pypeclub/feature/OP-2429_Publisher-Preparations-before-standalone-publisher

commit 4b3834e
Merge: ccea535 604a590
Author: pypebot <82967070+pypebot@users.noreply.github.com>
Date:   Mon Feb 7 09:38:20 2022 +0100

    [Automated] Merged release main into develop

commit ccea535
Merge: f2a9543 a11700e
Author: pypebot <82967070+pypebot@users.noreply.github.com>
Date:   Sat Feb 5 04:34:51 2022 +0100

    [Automated] Merged main into develop

commit 6468751
Author: clement.hector <clement.hector@gmail.com>
Date:   Fri Feb 4 12:11:05 2022 +0100

    use env_value_to_bool instead of ast.literal_eval + os.getenv

commit fe46093
Author: clement.hector <clement.hector@gmail.com>
Date:   Wed Feb 2 19:36:49 2022 +0100

    fix test on string to boolean

commit 3160199
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 14:15:19 2022 +0100

    fix grammar

commit d739364
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 13:48:18 2022 +0100

    handle default value of 'is_label_horizontal'

commit 7ec4d50
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 13:48:03 2022 +0100

    precreate widget is separated from create dialog completely

commit f8be576
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 18:05:32 2022 +0100

    renamed method 'get_attribute_defs' to 'get_instance_attr_defs'

commit 20f5e8f
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:51:25 2022 +0100

    hound fixes

commit 95176b6
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:26:16 2022 +0100

    modified example creator

commit 23c3bc8
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:26:09 2022 +0100

    style changes of header view nad checkbox

commit 2d75212
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:25:51 2022 +0100

    ui attribute definitions are skipped for storing data

commit f0b7f72
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:25:34 2022 +0100

    creator dialog has context widget and creator's attributes

commit 9c6a57a
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:23:37 2022 +0100

    creator can define precreate attribute definitions and allowing context change

commit 3878c52
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:57 2022 +0100

    added widgett for pre create attributes

commit fffdef5
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:41 2022 +0100

    added publisher specific asset and task widgets

commit fbdd1d8
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:08 2022 +0100

    moved few widgets to tools/utils and modified asset/task widgets to easily change source model

commit 396bdfd
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:16:32 2022 +0100

    added few new attribute definitions and their widgets
BenoitConnan added a commit to Ellipsanime/OpenPype that referenced this pull request Mar 4, 2022
commit ffe585c
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Mon Dec 20 16:25:01 2021 +0100

    add_published_workfiles_option

commit 6f79251
Merge: ecae9f6 6468751
Author: Petr Kalis <petr.kalis@gmail.com>
Date:   Mon Feb 7 10:05:55 2022 +0100

    Merge pull request ynput#2634 from Ellipsanime/fix-photoshop-environement-workfiles-on-launch

    Fix open workfile on launch in photoshop

commit ecae9f6
Merge: 4b3834e 3160199
Author: Milan Kolar <mkolar@users.noreply.github.com>
Date:   Mon Feb 7 09:52:39 2022 +0100

    Merge pull request ynput#2556 from pypeclub/feature/OP-2429_Publisher-Preparations-before-standalone-publisher

commit 4b3834e
Merge: ccea535 604a590
Author: pypebot <82967070+pypebot@users.noreply.github.com>
Date:   Mon Feb 7 09:38:20 2022 +0100

    [Automated] Merged release main into develop

commit ccea535
Merge: f2a9543 a11700e
Author: pypebot <82967070+pypebot@users.noreply.github.com>
Date:   Sat Feb 5 04:34:51 2022 +0100

    [Automated] Merged main into develop

commit 6468751
Author: clement.hector <clement.hector@gmail.com>
Date:   Fri Feb 4 12:11:05 2022 +0100

    use env_value_to_bool instead of ast.literal_eval + os.getenv

commit fe46093
Author: clement.hector <clement.hector@gmail.com>
Date:   Wed Feb 2 19:36:49 2022 +0100

    fix test on string to boolean

commit 3160199
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 14:15:19 2022 +0100

    fix grammar

commit d739364
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 13:48:18 2022 +0100

    handle default value of 'is_label_horizontal'

commit 7ec4d50
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 13:48:03 2022 +0100

    precreate widget is separated from create dialog completely

commit f8be576
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 18:05:32 2022 +0100

    renamed method 'get_attribute_defs' to 'get_instance_attr_defs'

commit 20f5e8f
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:51:25 2022 +0100

    hound fixes

commit 95176b6
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:26:16 2022 +0100

    modified example creator

commit 23c3bc8
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:26:09 2022 +0100

    style changes of header view nad checkbox

commit 2d75212
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:25:51 2022 +0100

    ui attribute definitions are skipped for storing data

commit f0b7f72
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:25:34 2022 +0100

    creator dialog has context widget and creator's attributes

commit 9c6a57a
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:23:37 2022 +0100

    creator can define precreate attribute definitions and allowing context change

commit 3878c52
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:57 2022 +0100

    added widgett for pre create attributes

commit fffdef5
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:41 2022 +0100

    added publisher specific asset and task widgets

commit fbdd1d8
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:08 2022 +0100

    moved few widgets to tools/utils and modified asset/task widgets to easily change source model

commit 396bdfd
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:16:32 2022 +0100

    added few new attribute definitions and their widgets
BenoitConnan added a commit to Ellipsanime/OpenPype that referenced this pull request Mar 4, 2022
commit c22763f
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Mon Nov 22 11:54:40 2021 +0100

    Apply override on AOV layer path

commit cc3167b
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Tue Nov 16 16:57:36 2021 +0100

    Deadline publish plugin override output option

commit 6f79251
Merge: ecae9f6 6468751
Author: Petr Kalis <petr.kalis@gmail.com>
Date:   Mon Feb 7 10:05:55 2022 +0100

    Merge pull request ynput#2634 from Ellipsanime/fix-photoshop-environement-workfiles-on-launch

    Fix open workfile on launch in photoshop

commit ecae9f6
Merge: 4b3834e 3160199
Author: Milan Kolar <mkolar@users.noreply.github.com>
Date:   Mon Feb 7 09:52:39 2022 +0100

    Merge pull request ynput#2556 from pypeclub/feature/OP-2429_Publisher-Preparations-before-standalone-publisher

commit 4b3834e
Merge: ccea535 604a590
Author: pypebot <82967070+pypebot@users.noreply.github.com>
Date:   Mon Feb 7 09:38:20 2022 +0100

    [Automated] Merged release main into develop

commit ccea535
Merge: f2a9543 a11700e
Author: pypebot <82967070+pypebot@users.noreply.github.com>
Date:   Sat Feb 5 04:34:51 2022 +0100

    [Automated] Merged main into develop

commit 6468751
Author: clement.hector <clement.hector@gmail.com>
Date:   Fri Feb 4 12:11:05 2022 +0100

    use env_value_to_bool instead of ast.literal_eval + os.getenv

commit fe46093
Author: clement.hector <clement.hector@gmail.com>
Date:   Wed Feb 2 19:36:49 2022 +0100

    fix test on string to boolean

commit 3160199
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 14:15:19 2022 +0100

    fix grammar

commit d739364
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 13:48:18 2022 +0100

    handle default value of 'is_label_horizontal'

commit 7ec4d50
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 13:48:03 2022 +0100

    precreate widget is separated from create dialog completely

commit f8be576
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 18:05:32 2022 +0100

    renamed method 'get_attribute_defs' to 'get_instance_attr_defs'

commit 20f5e8f
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:51:25 2022 +0100

    hound fixes

commit 95176b6
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:26:16 2022 +0100

    modified example creator

commit 23c3bc8
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:26:09 2022 +0100

    style changes of header view nad checkbox

commit 2d75212
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:25:51 2022 +0100

    ui attribute definitions are skipped for storing data

commit f0b7f72
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:25:34 2022 +0100

    creator dialog has context widget and creator's attributes

commit 9c6a57a
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:23:37 2022 +0100

    creator can define precreate attribute definitions and allowing context change

commit 3878c52
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:57 2022 +0100

    added widgett for pre create attributes

commit fffdef5
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:41 2022 +0100

    added publisher specific asset and task widgets

commit fbdd1d8
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:08 2022 +0100

    moved few widgets to tools/utils and modified asset/task widgets to easily change source model

commit 396bdfd
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:16:32 2022 +0100

    added few new attribute definitions and their widgets
BenoitConnan added a commit to Ellipsanime/OpenPype that referenced this pull request Mar 4, 2022
commit 21fc3b2
Author: clement.hector <clement.hector@gmail.com>
Date:   Wed Jan 5 14:28:44 2022 +0100

    Change master_task to main_task

commit c5bf5e1
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Thu Dec 23 11:24:58 2021 +0100

    Remove wip

commit 592c97e
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Fri Dec 17 11:52:38 2021 +0100

    Make lmauncher and workfiles interfaces use master_task info

commit 6f79251
Merge: ecae9f6 6468751
Author: Petr Kalis <petr.kalis@gmail.com>
Date:   Mon Feb 7 10:05:55 2022 +0100

    Merge pull request ynput#2634 from Ellipsanime/fix-photoshop-environement-workfiles-on-launch

    Fix open workfile on launch in photoshop

commit ecae9f6
Merge: 4b3834e 3160199
Author: Milan Kolar <mkolar@users.noreply.github.com>
Date:   Mon Feb 7 09:52:39 2022 +0100

    Merge pull request ynput#2556 from pypeclub/feature/OP-2429_Publisher-Preparations-before-standalone-publisher

commit 4b3834e
Merge: ccea535 604a590
Author: pypebot <82967070+pypebot@users.noreply.github.com>
Date:   Mon Feb 7 09:38:20 2022 +0100

    [Automated] Merged release main into develop

commit ccea535
Merge: f2a9543 a11700e
Author: pypebot <82967070+pypebot@users.noreply.github.com>
Date:   Sat Feb 5 04:34:51 2022 +0100

    [Automated] Merged main into develop

commit 6468751
Author: clement.hector <clement.hector@gmail.com>
Date:   Fri Feb 4 12:11:05 2022 +0100

    use env_value_to_bool instead of ast.literal_eval + os.getenv

commit fe46093
Author: clement.hector <clement.hector@gmail.com>
Date:   Wed Feb 2 19:36:49 2022 +0100

    fix test on string to boolean

commit 3160199
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 14:15:19 2022 +0100

    fix grammar

commit d739364
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 13:48:18 2022 +0100

    handle default value of 'is_label_horizontal'

commit 7ec4d50
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 13:48:03 2022 +0100

    precreate widget is separated from create dialog completely

commit f8be576
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 18:05:32 2022 +0100

    renamed method 'get_attribute_defs' to 'get_instance_attr_defs'

commit 20f5e8f
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:51:25 2022 +0100

    hound fixes

commit 95176b6
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:26:16 2022 +0100

    modified example creator

commit 23c3bc8
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:26:09 2022 +0100

    style changes of header view nad checkbox

commit 2d75212
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:25:51 2022 +0100

    ui attribute definitions are skipped for storing data

commit f0b7f72
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:25:34 2022 +0100

    creator dialog has context widget and creator's attributes

commit 9c6a57a
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:23:37 2022 +0100

    creator can define precreate attribute definitions and allowing context change

commit 3878c52
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:57 2022 +0100

    added widgett for pre create attributes

commit fffdef5
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:41 2022 +0100

    added publisher specific asset and task widgets

commit fbdd1d8
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:08 2022 +0100

    moved few widgets to tools/utils and modified asset/task widgets to easily change source model

commit 396bdfd
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:16:32 2022 +0100

    added few new attribute definitions and their widgets
BenoitConnan added a commit to Ellipsanime/OpenPype that referenced this pull request Mar 4, 2022
commit 11ff13b
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Wed Feb 23 14:16:09 2022 +0100

    Fix template loader

commit 9f656f9
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Wed Feb 23 14:12:58 2022 +0100

    Correctly move imported layers in placeholder groups

commit 136588c
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Wed Feb 23 14:12:11 2022 +0100

    Add moveAt and parentLayer method to photoshop and photoshop stub

commit 45c756b
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Feb 14 16:45:15 2022 +0100

    ignore placeholders for instance collection

commit 34a0107
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Feb 14 13:19:27 2022 +0100

    minor fix

commit 7cac4ba
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Thu Feb 10 13:42:27 2022 +0100

    add task filtering for photoshop build

commit 7d831da
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Wed Feb 9 16:50:15 2022 +0100

    minor fixes

commit 7778b90
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Wed Feb 9 13:18:33 2022 +0100

    abstract template loader refactoring

commit 3ab2098
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Tue Feb 8 16:25:06 2022 +0100

    fix enum managing in lib_template_loader (photoshop)

commit 4a72c48
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Tue Feb 8 15:03:45 2022 +0100

    photoshop template builder and loader

commit 55b3f96
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Feb 7 16:56:25 2022 +0100

    Changed needed for avalon scripts moved to openpype

commit af81bfa
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Jan 3 12:56:41 2022 +0100

    add photoshop template loader

commit 548f837
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Tue Oct 12 17:08:19 2021 +0200

    draft v2 menu build template

commit 1dcc235
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Tue Feb 8 14:56:28 2022 +0100

    refact abstract template loader

commit 4fbeac3
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Feb 7 16:49:32 2022 +0100

    minor changes
    Needed because avalon hosts scripts where moved to openpype hosts

commit 4bf6288
Author: Daniele Zaccaria <daniele.zaccaria@ORION.lan>
Date:   Thu Feb 3 11:24:20 2022 +0100

    hotfix update placeholder

commit 0ba04c4
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Jan 3 13:28:45 2022 +0100

    Hound fix

commit 0c9df38
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Jan 3 13:11:53 2022 +0100

    Minor fixes

commit 00e1d90
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Jan 3 11:16:21 2022 +0100

    Set imported nodes location at placeholder location

commit 8e4f26e
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Thu Dec 16 14:47:25 2021 +0100

    hound fix

commit 9a76997
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Thu Dec 16 14:41:13 2021 +0100

    Add update placeholder to maya menu

commit 004e522
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Thu Dec 16 14:31:09 2021 +0100

    fix template updating

commit 6c59ea0
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Thu Dec 16 13:31:48 2021 +0100

    merge update and populate methodes
    avoid implementing two times same logic

commit 50248e6
Author: Daniele Zaccaria <daniele.zaccaria@ORION.lan>
Date:   Thu Dec 16 11:21:33 2021 +0100

    change placeholder attribute order to fit the creation window

commit d72d02d
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Dec 13 12:30:21 2021 +0100

    Put hound on a leash please.

commit 2b66442
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Dec 13 12:13:04 2021 +0100

    hound fix

commit 01ec3ad
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Dec 13 11:06:49 2021 +0100

    fix placeholder creation

commit d1de1ba
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Fri Dec 10 17:57:15 2021 +0100

    add placeholder updater + minor fixes

commit 86588b7
Author: Daniele Zaccaria <daniele.zaccaria@ORION.lan>
Date:   Fri Dec 10 14:24:09 2021 +0100

    parent place holder to selection

commit bd6bc62
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Wed Dec 8 14:58:56 2021 +0100

    better management for Loader outputs

commit 07057e8
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Dec 6 14:20:22 2021 +0100

    Keeps loaded nodes in placeholder's set

commit 34ff85d
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Dec 6 12:31:44 2021 +0100

    Add logs

    And remove cycling import

commit 1a237fd
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Thu Dec 2 11:07:45 2021 +0100

    catch and handle loader exceptions

commit 554c487
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Wed Dec 1 15:10:06 2021 +0100

    add simple loading options feature in placeholder

commit 90f137e
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Tue Nov 30 16:53:32 2021 +0100

    add builder_type 'all_assets'
    And post process on creation sets

commit 99a54df
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Tue Nov 30 13:54:41 2021 +0100

    remove menu residue

commit 796edc9
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Nov 29 17:56:43 2021 +0100

    Refacto (use db to find representation)

    Instead of using db to find asset and result, use db capacity to filter
    to find representation in db

commit 4aa30fb
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Fri Nov 26 17:24:38 2021 +0100

    Hound fix, waf waf !

commit 259b9d6
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Fri Nov 26 17:06:35 2021 +0100

    use avalon OptionDialog for placeholder instancing

commit 56c9985
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Thu Nov 25 17:22:01 2021 +0100

    remove debug prints

    Oops

commit 69d02b7
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Thu Nov 25 16:54:17 2021 +0100

    more docs

commit e599461
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Thu Nov 25 16:48:49 2021 +0100

    raise TemplateLoadingFailed when null path found

commit 3a54916
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Thu Nov 25 16:28:06 2021 +0100

    hound fix

commit bd1bbc2
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Thu Nov 25 15:07:16 2021 +0100

    name convention

commit d12e140
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Thu Nov 25 13:41:44 2021 +0100

    add posibility to update loaded template

commit 721701f
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Tue Nov 23 16:45:21 2021 +0100

    Add abstract template loader to OP lib

    Also add posibility to find template loader child class
    by heritance instead of by name

commit 8c65d01
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Nov 22 15:33:15 2021 +0100

    Add template relative exception

commit c89a3ac
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Nov 22 15:10:58 2021 +0100

    change uses of "dcc" in variable name  by "host"

commit b09c00a
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Nov 22 14:53:39 2021 +0100

    add filtering by task name and task type

commit 9d346a2
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Nov 22 13:23:22 2021 +0100

    separate process from init

commit 6d6bfd0
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Fri Nov 19 17:50:13 2021 +0100

    Switch Build Asset Template to abstract base class

commit 69d04fc
Author: clement.hector <clement.hector@gmail.com>
Date:   Wed Nov 17 10:44:48 2021 +0100

    Change title doc

commit fac198f
Author: clement <clement.hector@gmail.com>
Date:   Wed Nov 17 10:40:02 2021 +0100

    add end line

commit 4b6ddef
Author: clement <clement.hector@gmail.com>
Date:   Wed Nov 17 10:39:30 2021 +0100

    add end line

commit b73e7b9
Author: clement <clement.hector@gmail.com>
Date:   Wed Nov 17 10:38:39 2021 +0100

    add end line

commit 6442b4f
Author: clement.hector <clement.hector@gmail.com>
Date:   Wed Nov 17 10:25:04 2021 +0100

    Add documentation

commit 450428b
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Nov 15 16:57:55 2021 +0100

    More comments

commit e82ff2c
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Nov 15 14:49:23 2021 +0100

    Revert schema for old build workfile compatibility

commit 59f25d7
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Nov 15 13:50:20 2021 +0100

    refact + hound fix

commit aff4b01
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Nov 15 11:32:38 2021 +0100

    Refact avalon context lib

commit 28450cc
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Tue Nov 9 18:06:01 2021 +0100

    Keep track of placeholders for building template

commit 822033a
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Tue Nov 9 15:22:29 2021 +0100

    Refactoring build_workfile_by_template

    Extract placeholder logic +
    Filter by asset and hierarchy

commit 713af51
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Fri Nov 5 12:11:33 2021 +0100

    Move template loader to lib and maya api

commit 9aecac0
Author: clement.hector <clement.hector@gmail.com>
Date:   Thu Nov 4 13:53:36 2021 +0100

    fix hound

commit c32f867
Author: clement.hector <clement.hector@gmail.com>
Date:   Thu Nov 4 13:48:49 2021 +0100

    remove mel import

commit 98c91f0
Author: clement.hector <clement.hector@gmail.com>
Date:   Thu Nov 4 13:47:11 2021 +0100

    fix hound

commit e7624b5
Author: clement.hector <clement.hector@gmail.com>
Date:   Thu Nov 4 10:15:51 2021 +0100

    fix hound

commit 2aa4314
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Wed Nov 3 16:21:20 2021 +0100

    patch out submodule from branch

commit 4cb4e25
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Wed Oct 27 10:21:19 2021 +0200

    Build template with current and linked assets

commit bda59a4
Author: clement.hector <clement.hector@gmail.com>
Date:   Mon Oct 25 17:28:01 2021 +0200

    remove unused code

commit d148524
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Oct 25 16:01:19 2021 +0200

    refact

commit fd40baa
Author: clement.hector <clement.hector@gmail.com>
Date:   Mon Oct 25 17:24:35 2021 +0200

    Unify place holder creation

commit 4663fe0
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Fri Oct 15 17:21:48 2021 +0200

    correct path parsing

commit a8ae9ab
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Fri Oct 15 11:53:42 2021 +0200

    Build workfile by template

    First functionning iteration

    Co-authored-by: clement <ClementHector@users.noreply.github.com>

commit cdcc03b
Author: clement.hector <clement.hector@gmail.com>
Date:   Wed Oct 13 09:50:42 2021 +0200

    add menu build template

commit e847476
Author: clement.hector <clement.hector@gmail.com>
Date:   Wed Oct 13 09:49:58 2021 +0200

    add a library to help the build the templates

commit ea212ad
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Tue Oct 12 17:09:35 2021 +0200

    remove useless draft

commit 6d4486b
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Tue Oct 12 17:08:19 2021 +0200

    draft v2 menu build template

commit ec2b5c4
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Oct 11 18:54:07 2021 +0200

    first commit

    Co-authored-by: clement <ClementHector@users.noreply.github.com>

commit 3db5df1
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Wed Oct 27 10:21:19 2021 +0200

    Build template with current and linked assets

commit 51bde25
Author: clement.hector <clement.hector@gmail.com>
Date:   Mon Oct 25 17:28:01 2021 +0200

    remove unused code

commit d037941
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Oct 25 16:01:19 2021 +0200

    refact

commit dd379d2
Author: clement.hector <clement.hector@gmail.com>
Date:   Mon Oct 25 17:24:35 2021 +0200

    Unify place holder creation

commit 194cd67
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Fri Oct 15 17:21:48 2021 +0200

    correct path parsing

commit 68f17b3
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Fri Oct 15 11:53:42 2021 +0200

    Build workfile by template

    First functionning iteration

    Co-authored-by: clement <ClementHector@users.noreply.github.com>

commit 57a3ea6
Author: clement.hector <clement.hector@gmail.com>
Date:   Wed Oct 13 09:50:42 2021 +0200

    add menu build template

commit 02e5df5
Author: clement.hector <clement.hector@gmail.com>
Date:   Wed Oct 13 09:49:58 2021 +0200

    add a library to help the build the templates

commit 2b3efe7
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Tue Oct 12 17:09:35 2021 +0200

    remove useless draft

commit 56226d1
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Tue Oct 12 17:08:19 2021 +0200

    draft v2 menu build template

commit 47333cb
Author: BenoitConnan <benoitconnan.pro@gmail.com>
Date:   Mon Oct 11 18:54:07 2021 +0200

    first commit

    Co-authored-by: clement <ClementHector@users.noreply.github.com>

commit 6f79251
Merge: ecae9f6 6468751
Author: Petr Kalis <petr.kalis@gmail.com>
Date:   Mon Feb 7 10:05:55 2022 +0100

    Merge pull request ynput#2634 from Ellipsanime/fix-photoshop-environement-workfiles-on-launch

    Fix open workfile on launch in photoshop

commit ecae9f6
Merge: 4b3834e 3160199
Author: Milan Kolar <mkolar@users.noreply.github.com>
Date:   Mon Feb 7 09:52:39 2022 +0100

    Merge pull request ynput#2556 from pypeclub/feature/OP-2429_Publisher-Preparations-before-standalone-publisher

commit 4b3834e
Merge: ccea535 604a590
Author: pypebot <82967070+pypebot@users.noreply.github.com>
Date:   Mon Feb 7 09:38:20 2022 +0100

    [Automated] Merged release main into develop

commit ccea535
Merge: f2a9543 a11700e
Author: pypebot <82967070+pypebot@users.noreply.github.com>
Date:   Sat Feb 5 04:34:51 2022 +0100

    [Automated] Merged main into develop

commit 6468751
Author: clement.hector <clement.hector@gmail.com>
Date:   Fri Feb 4 12:11:05 2022 +0100

    use env_value_to_bool instead of ast.literal_eval + os.getenv

commit fe46093
Author: clement.hector <clement.hector@gmail.com>
Date:   Wed Feb 2 19:36:49 2022 +0100

    fix test on string to boolean

commit 3160199
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 14:15:19 2022 +0100

    fix grammar

commit d739364
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 13:48:18 2022 +0100

    handle default value of 'is_label_horizontal'

commit 7ec4d50
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 13:48:03 2022 +0100

    precreate widget is separated from create dialog completely

commit f8be576
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 18:05:32 2022 +0100

    renamed method 'get_attribute_defs' to 'get_instance_attr_defs'

commit 20f5e8f
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:51:25 2022 +0100

    hound fixes

commit 95176b6
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:26:16 2022 +0100

    modified example creator

commit 23c3bc8
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:26:09 2022 +0100

    style changes of header view nad checkbox

commit 2d75212
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:25:51 2022 +0100

    ui attribute definitions are skipped for storing data

commit f0b7f72
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:25:34 2022 +0100

    creator dialog has context widget and creator's attributes

commit 9c6a57a
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:23:37 2022 +0100

    creator can define precreate attribute definitions and allowing context change

commit 3878c52
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:57 2022 +0100

    added widgett for pre create attributes

commit fffdef5
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:41 2022 +0100

    added publisher specific asset and task widgets

commit fbdd1d8
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:08 2022 +0100

    moved few widgets to tools/utils and modified asset/task widgets to easily change source model

commit 396bdfd
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:16:32 2022 +0100

    added few new attribute definitions and their widgets
BenoitConnan added a commit to Ellipsanime/OpenPype that referenced this pull request Mar 4, 2022
commit 687d4b7
Author: clement.hector <clement.hector@gmail.com>
Date:   Mon Feb 14 11:26:30 2022 +0100

    Add pyblish family whitelist for photoshop

commit a6c2802
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Fri Dec 10 11:29:46 2021 +0100

    add PYBLISH_DEFAULT_INTENT env var

commit bdcd514
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Fri Dec 10 11:29:26 2021 +0100

    Add PYBLISH_TITLE env var

commit 2027a38
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Fri Dec 10 11:11:25 2021 +0100

    Fix lines length

commit 7ada56b
Author: Jérôme LORRAIN <jerome.lorrain@protonmail.com>
Date:   Wed Nov 17 14:59:21 2021 +0100

    Add PYBLISH_FAMILY_WHITELIST env var

commit 6f79251
Merge: ecae9f6 6468751
Author: Petr Kalis <petr.kalis@gmail.com>
Date:   Mon Feb 7 10:05:55 2022 +0100

    Merge pull request ynput#2634 from Ellipsanime/fix-photoshop-environement-workfiles-on-launch

    Fix open workfile on launch in photoshop

commit ecae9f6
Merge: 4b3834e 3160199
Author: Milan Kolar <mkolar@users.noreply.github.com>
Date:   Mon Feb 7 09:52:39 2022 +0100

    Merge pull request ynput#2556 from pypeclub/feature/OP-2429_Publisher-Preparations-before-standalone-publisher

commit 4b3834e
Merge: ccea535 604a590
Author: pypebot <82967070+pypebot@users.noreply.github.com>
Date:   Mon Feb 7 09:38:20 2022 +0100

    [Automated] Merged release main into develop

commit ccea535
Merge: f2a9543 a11700e
Author: pypebot <82967070+pypebot@users.noreply.github.com>
Date:   Sat Feb 5 04:34:51 2022 +0100

    [Automated] Merged main into develop

commit 6468751
Author: clement.hector <clement.hector@gmail.com>
Date:   Fri Feb 4 12:11:05 2022 +0100

    use env_value_to_bool instead of ast.literal_eval + os.getenv

commit fe46093
Author: clement.hector <clement.hector@gmail.com>
Date:   Wed Feb 2 19:36:49 2022 +0100

    fix test on string to boolean

commit 3160199
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 14:15:19 2022 +0100

    fix grammar

commit d739364
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 13:48:18 2022 +0100

    handle default value of 'is_label_horizontal'

commit 7ec4d50
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 13:48:03 2022 +0100

    precreate widget is separated from create dialog completely

commit f8be576
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 18:05:32 2022 +0100

    renamed method 'get_attribute_defs' to 'get_instance_attr_defs'

commit 20f5e8f
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:51:25 2022 +0100

    hound fixes

commit 95176b6
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:26:16 2022 +0100

    modified example creator

commit 23c3bc8
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:26:09 2022 +0100

    style changes of header view nad checkbox

commit 2d75212
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:25:51 2022 +0100

    ui attribute definitions are skipped for storing data

commit f0b7f72
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:25:34 2022 +0100

    creator dialog has context widget and creator's attributes

commit 9c6a57a
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:23:37 2022 +0100

    creator can define precreate attribute definitions and allowing context change

commit 3878c52
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:57 2022 +0100

    added widgett for pre create attributes

commit fffdef5
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:41 2022 +0100

    added publisher specific asset and task widgets

commit fbdd1d8
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:08 2022 +0100

    moved few widgets to tools/utils and modified asset/task widgets to easily change source model

commit 396bdfd
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:16:32 2022 +0100

    added few new attribute definitions and their widgets
BenoitConnan added a commit to Ellipsanime/OpenPype that referenced this pull request Mar 4, 2022
commit d00105c
Author: Theodoric JUILLET <theodoric.juillet@ellipsanime.net>
Date:   Mon Feb 21 17:40:03 2022 +0100

    fix: AOV Support for Render Settings.
    Add prefix custom option, extension ignore list, custom separator.

commit 6e97b89
Author: Theodoric JUILLET <theodoric.juillet@ellipsanime.net>
Date:   Fri Feb 18 18:14:33 2022 +0100

    Add ignore case for AOV ext depending on AovType

commit 6f79251
Merge: ecae9f6 6468751
Author: Petr Kalis <petr.kalis@gmail.com>
Date:   Mon Feb 7 10:05:55 2022 +0100

    Merge pull request ynput#2634 from Ellipsanime/fix-photoshop-environement-workfiles-on-launch

    Fix open workfile on launch in photoshop

commit ecae9f6
Merge: 4b3834e 3160199
Author: Milan Kolar <mkolar@users.noreply.github.com>
Date:   Mon Feb 7 09:52:39 2022 +0100

    Merge pull request ynput#2556 from pypeclub/feature/OP-2429_Publisher-Preparations-before-standalone-publisher

commit 4b3834e
Merge: ccea535 604a590
Author: pypebot <82967070+pypebot@users.noreply.github.com>
Date:   Mon Feb 7 09:38:20 2022 +0100

    [Automated] Merged release main into develop

commit ccea535
Merge: f2a9543 a11700e
Author: pypebot <82967070+pypebot@users.noreply.github.com>
Date:   Sat Feb 5 04:34:51 2022 +0100

    [Automated] Merged main into develop

commit 6468751
Author: clement.hector <clement.hector@gmail.com>
Date:   Fri Feb 4 12:11:05 2022 +0100

    use env_value_to_bool instead of ast.literal_eval + os.getenv

commit fe46093
Author: clement.hector <clement.hector@gmail.com>
Date:   Wed Feb 2 19:36:49 2022 +0100

    fix test on string to boolean

commit 3160199
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 14:15:19 2022 +0100

    fix grammar

commit d739364
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 13:48:18 2022 +0100

    handle default value of 'is_label_horizontal'

commit 7ec4d50
Author: Jakub Trllo <jakub.trllo@gmail.com>
Date:   Tue Jan 25 13:48:03 2022 +0100

    precreate widget is separated from create dialog completely

commit f8be576
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 18:05:32 2022 +0100

    renamed method 'get_attribute_defs' to 'get_instance_attr_defs'

commit 20f5e8f
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:51:25 2022 +0100

    hound fixes

commit 95176b6
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:26:16 2022 +0100

    modified example creator

commit 23c3bc8
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:26:09 2022 +0100

    style changes of header view nad checkbox

commit 2d75212
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:25:51 2022 +0100

    ui attribute definitions are skipped for storing data

commit f0b7f72
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:25:34 2022 +0100

    creator dialog has context widget and creator's attributes

commit 9c6a57a
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:23:37 2022 +0100

    creator can define precreate attribute definitions and allowing context change

commit 3878c52
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:57 2022 +0100

    added widgett for pre create attributes

commit fffdef5
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:41 2022 +0100

    added publisher specific asset and task widgets

commit fbdd1d8
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:22:08 2022 +0100

    moved few widgets to tools/utils and modified asset/task widgets to easily change source model

commit 396bdfd
Author: iLLiCiTiT <jakub.trllo@gmail.com>
Date:   Tue Jan 18 17:16:32 2022 +0100

    added few new attribute definitions and their widgets
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
type: enhancement Enhancements to existing functionality
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants